home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue37 / system / EditAssoc.dfm / EditAssoc.txt
Encoding:
Text File  |  1998-07-27  |  1.8 KB  |  90 lines

  1. object EditAssociation: TEditAssociation
  2.   Left = 235
  3.   Top = 445
  4.   BorderStyle = bsDialog
  5.   Caption = 'Edit File Association'
  6.   ClientHeight = 145
  7.   ClientWidth = 469
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   Position = poScreenCenter
  14.   PixelsPerInch = 96
  15.   TextHeight = 13
  16.   object Extension: TLabel
  17.     Left = 12
  18.     Top = 11
  19.     Width = 158
  20.     Height = 20
  21.     Caption = 'File Extension = %s'
  22.     Font.Charset = DEFAULT_CHARSET
  23.     Font.Color = clMaroon
  24.     Font.Height = -16
  25.     Font.Name = 'MS Sans Serif'
  26.     Font.Style = [fsBold]
  27.     ParentFont = False
  28.   end
  29.   object Label1: TLabel
  30.     Left = 13
  31.     Top = 54
  32.     Width = 97
  33.     Height = 13
  34.     Caption = 'Associated Program:'
  35.   end
  36.   object Bevel1: TBevel
  37.     Left = 12
  38.     Top = 85
  39.     Width = 441
  40.     Height = 13
  41.     Shape = bsTopLine
  42.   end
  43.   object OKButton: TButton
  44.     Left = 291
  45.     Top = 106
  46.     Width = 75
  47.     Height = 25
  48.     Caption = '&OK'
  49.     Default = True
  50.     TabOrder = 0
  51.     OnClick = OKButtonClick
  52.   end
  53.   object CancelButton: TButton
  54.     Left = 379
  55.     Top = 106
  56.     Width = 75
  57.     Height = 25
  58.     Cancel = True
  59.     Caption = '&Cancel'
  60.     ModalResult = 2
  61.     TabOrder = 1
  62.   end
  63.   object AssocPath: TEdit
  64.     Left = 117
  65.     Top = 50
  66.     Width = 247
  67.     Height = 21
  68.     Color = 12713983
  69.     TabOrder = 2
  70.   end
  71.   object BrowseButton: TButton
  72.     Left = 369
  73.     Top = 48
  74.     Width = 75
  75.     Height = 25
  76.     Caption = '&Browse...'
  77.     TabOrder = 3
  78.     OnClick = BrowseButtonClick
  79.   end
  80.   object OpenDialog1: TOpenDialog
  81.     DefaultExt = 'EXE'
  82.     Filter = 
  83.       'EXE files (*.EXE)|*.EXE|COM files (*.COM)|*.COM|All files (*.*)|' +
  84.       '*.*'
  85.     Options = [ofHideReadOnly, ofPathMustExist, ofFileMustExist]
  86.     Left = 17
  87.     Top = 102
  88.   end
  89. end
  90.